home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
PRINTER
/
AUFONT.ARJ
/
REGISTER.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-05-17
|
2KB
|
36 lines
echo off
cls
if exist REGISTER.FRM goto :message
echo ERROR: Cannot locate the order form file which is
echo named REGISTER.FRM. Please change to the drive or
echo directory which contains your AUTOFONT files, then
echo run the ORDER.BAT file again.
goto :exit
:message
echo ┌─────────────────────────────────────────────────────────┐
echo │ The registration form for AUTOFONT.EXE │
echo │ consists of one printed 8-1/2 by 11-inch page. │
echo ├─────────────────────────────────────────────────────────┤
echo │ If you don't want to print this form now, press Ctrl-C │
echo │ and then press Y. │
echo │ Otherwise, you may let this program print it for you. │
echo ├─────────────────────────────────────────────────────────┤
echo │ │
echo │ Simply do the following: │
echo │ │
echo │ 1. Turn your printer ON │
echo │ 2. If using laserjet set @ 65 lines/page │
echo │ 3. Adjust the left margin to zero or 1 │
echo │ 4. Adjust the top line to the very top │
echo │ of the page │
echo │ 5. Press any key when ready to print, │
echo │ or type Ctrl-C now to abort... │
echo │ │
echo └─────────────────────────────────────────────────────────┘
pause > nul
echo ┌─────────────────────────────────────────┐
echo │ Printing AUTOFONT REGISTRATION FORM NOW │
echo └─────────────────────────────────────────┘
type REGISTER.FRM > prn
echo Done.
cls